home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Express Pd: GALORE
/
Express Pd Galore - The Amiga PD & Shareware CD (1994)(Express Pd)[!][Amiga-CD32-CDTV].iso
/
3.0
/
rexxc
/
ep_getmodnamescrol.dopus
< prev
next >
Wrap
Text File
|
1993-12-27
|
656b
|
42 lines
/* Eagleplayeransteuerung über Diropus (Modulname)
(c) 1993 Henryk Richter
*/
options results
if pos('rexx_EP',SHOW('Ports')) = 0 then do
address 'DOPUS.1'
toptext 'Eagleplayer-Port not found'
exit 0
end
address 'rexx_EP'
status g ply
aha = result
if aha="yes" then
do
status m fil
name = result
address 'DOPUS.1'
call scrol name
end
else
do
address 'DOPUS.1'
toptext 'No Module playing !'
end
exit
scrol:
parse arg text
text = space(text,1,'A0'X)
text = copies('A0'X,80) || text || copies('A0'X,80)
if length(text) > 80
then
do char = 1 to length(text)
toptext substr(text,char,80,'A0'X)
end
return